home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 039a / cdbw.zip / BSAMPLE.MAK < prev    next >
Text File  |  1991-05-15  |  398b  |  21 lines

  1. #
  2. # BSAMPLE.MAK
  3. #
  4. # Borland MAKE compatible.
  5. #
  6.  
  7. OBJS = sample.obj sclient.obj saddress.obj sabout.obj slistbox.obj serror.obj
  8.  
  9. sample.exe : $(OBJS) sampledb.dbd sample.res
  10.         tlink @bsample.lnk
  11.         rc $*.res
  12.  
  13. sampledb.dbd : sampledb.ddl
  14.         ddlp $*.ddl
  15.  
  16. sample.res : sample.rc sample.h sample.mnu sample.dlg
  17.         rc -r $*.rc
  18.  
  19. .c.obj :
  20.         bcc -ms -c -W  $<
  21.